a4b99f0c875fdfdbe081abf75dbabf7c08e14689,ij/gui/TextRoi.java,TextRoi,drawText,#Graphics#,242

Before Change


			int alpha = fillColor.getAlpha();
 			g.setColor(fillColor);
 			Graphics2D g2d = (Graphics2D)g;
			g.fillRect(sx-5, sy-5, sw+10, sh+10);
			g.setColor(c);
		}
		while (i<MAX_LINES && theText[i]!=null) {

After Change


			int alpha = fillColor.getAlpha();
 			g.setColor(fillColor);
			if (drawStringMode)
				g.fillRect(sx, sy, sw, sh);
			else
				g.fillRect(sx-5, sy-5, sw+10, sh+10);
			g.setColor(c);
		}
		while (i<MAX_LINES && theText[i]!=null) {